home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mt-load_cgi.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  42 lines

  1. #
  2. # This script was written by Rich Walchuck (rich.walchuck at gmail.com)
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(16169);
  10.  script_version ("$Revision: 1.1 $");
  11.  script_name(english:"Movable Type initialization script found");
  12.  desc["english"]="
  13. mt-load.cgi is installed by the Movable Type Publishing  
  14. Platform. 
  15.  
  16. Failure to remove mt-load.cgi could enable someone else to create
  17. a weblog in your Movable Type installation, and possibly gain access to 
  18. your data.
  19.  
  20. Solution: Remove the mt-load.cgi script after installation. 
  21. Risk factor : High";
  22.  
  23.  script_description(english:desc["english"]);
  24.  script_summary(english:"Checks for the existence of /mt/mt-load.cgi");
  25.  
  26.  script_category(ACT_GATHER_INFO);
  27.  script_copyright(english:"This script is Copyright (C) 2004 Rich Walchuck");
  28.  script_family(english:"CGI abuses");
  29.  script_require_ports("Services/www",80);
  30.  script_dependencies("http_version.nasl");
  31.  exit(0);
  32. }
  33.  
  34. include("http_func.inc");
  35. include("http_keepalive.inc");
  36.  
  37. port = get_http_port(default:80);
  38.  
  39. if(is_cgi_installed_ka(item:"/mt/mt-load.cgi",port:port))
  40.        security_hole(port);
  41.  
  42.